From 0c47484bbfc64ced8251154e8dfb5dd787934b99 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 3 Jan 2004 22:38:03 +0000 Subject: [PATCH] (compile-internal): Use point, not point-min, for set-window-point. --- lisp/progmodes/compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 6d76fe3384a..de050411411 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -754,7 +754,7 @@ Returns the compilation buffer created." compilation-directory-stack (list default-directory)) (set-window-start outwin (point-min)) (or (eq outwin (selected-window)) - (set-window-point outwin (point-min))) + (set-window-point outwin (point))) ;; The setup function is called before compilation-set-window-height ;; so it can set the compilation-window-height buffer locally. (if compilation-process-setup-function -- 2.30.2